home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / phpMyAdmin / lang / add_message_file.sh next >
Linux/UNIX/POSIX Shell Script  |  2003-11-18  |  590b  |  25 lines

  1. #!/bin/bash
  2. # $Id: add_message_file.sh,v 2.0 2003/11/18 15:20:38 nijel Exp $
  3. #
  4. # Shell script that adds a message file to all message files 
  5. # adding "//to translate" on each line 
  6. #
  7. # Example:  add_message_file.sh  xxx
  8. #
  9. if [ $# -ne 1 ] ; then
  10.     echo "usage: add_message_file.sh filename"
  11.     exit 1
  12. fi
  13.     
  14. for file in *.inc.php
  15. do
  16.     echo $file " "
  17.     grep -v '?>' ${file} > ${file}.new
  18.     sed 's/;/;\/\/to translate/' <$1 >> ${file}.new
  19.     echo "?>" >> ${file}.new
  20.     rm $file
  21.     mv ${file}.new $file
  22. done
  23. echo " "
  24. echo "Messages added to add message files (including english)"
  25.